home *** CD-ROM | disk | FTP | other *** search
/ PC Advisor 2011 May / PC Advisor 190 E.iso / pc / ESSENTIALS / VLC Media Player 1.1 / vlc-1.1.5-win32.exe / lua / meta / art / 01_googleimage.lua next >
Encoding:
Text File  |  2010-11-13  |  1.4 KB  |  42 lines

  1. --[[
  2.  Gets an artwork from images.google.com
  3.  
  4.  $Id$
  5.  Copyright ┬⌐ 2007 the VideoLAN team
  6.  
  7.  This program is free software; you can redistribute it and/or modify
  8.  it under the terms of the GNU General Public License as published by
  9.  the Free Software Foundation; either version 2 of the License, or
  10.  (at your option) any later version.
  11.  
  12.  This program is distributed in the hope that it will be useful,
  13.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  GNU General Public License for more details.
  16.  
  17.  You should have received a copy of the GNU General Public License
  18.  along with this program; if not, write to the Free Software
  19.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  20. --]]
  21.  
  22. -- Return the artwork
  23. function fetch_art()
  24.     if vlc.item == nil then return nil end
  25.  
  26.     local meta = vlc.item:metas()
  27.     if meta["artist"] and meta["album"] then
  28.         title = meta["artist"].." "..meta["album"]
  29.     elseif meta["artist"] and meta["title"] then
  30.         title = meta["artist"].." "..meta["title"]
  31.     else
  32.         return nil
  33.     end
  34.     fd = vlc.stream( "http://images.google.com/images?q="..vlc.strings.encode_uri_component( title.." cover" ) )
  35.     if not fd then return nil end
  36.  
  37.     page = fd:read( 65653 )
  38.     fd = nil
  39.     _, _, arturl = string.find( page, "imgurl=([^&]*)" )
  40.     return arturl
  41. end
  42.